AIR CLI Integration: --override flag functionality#5926
Open
riddhibhagwat-db wants to merge 1 commit into
Open
AIR CLI Integration: --override flag functionality#5926riddhibhagwat-db wants to merge 1 commit into
--override flag functionality#5926riddhibhagwat-db wants to merge 1 commit into
Conversation
781b385 to
783e13c
Compare
783e13c to
1853d20
Compare
Collaborator
Integration test reportCommit: b1066eb
8 interesting tests: 4 RECOVERED, 4 SKIP
Top 10 slowest tests (at least 2 minutes):
|
maggiewang-db
approved these changes
Jul 14, 2026
Contributor
Author
|
/debug-ci |
Contributor
Author
|
/trigger all |
Port `--override KEY=VALUE` from the Python CLI's yaml_overrides.py. Overrides are applied to the parsed YAML map before it is re-decoded and validated, so a single pipeline enforces path existence, type coercion, and the semantic validate() rules. A reflection-based path check runs first so an unknown or mistyped path names the exact --override key and lists the available fields, mirroring Python's _check_override_path. Co-authored-by: Isaac
47c6beb to
b1066eb
Compare
b5d4ae5 to
b1066eb
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes
Ports
--override KEY=VALUEfrom the Python CLI. Overrides apply to the parsed YAML map before re-decode + validate, so path existence, type coercion, and semantic validate() rules all run. A reflection-based path check names the exact --override key and lists available fields on error.Why
--override allows users to tweak a training configuration at launch time without editing the file and this allows for ease of use with sweep hyperparameters or scalable compute without having to maintain a forked configuration for each run.
Tests
unit tests:
acceptance tests:
Manual verification:
